Q3BoundingSphere_Copy
You can use theQ3BoundingSphere_Copy
function to make a copy of a bounding sphere.
TQ3BoundingSphere *Q3BoundingSphere_Copy ( const TQ3BoundingSphere *src, TQ3BoundingSphere *dest);
src
- A pointer to the bounding sphere to be copied.
dest
- On entry, a pointer to a buffer large enough to hold a bounding sphere. On exit, a pointer to a copy of the bounding sphere specified by the
src
parameter.DESCRIPTION
TheQ3BoundingSphere_Copy
function returns, as its function result and in thedest
parameter, a copy of the bounding sphere specified by thesrc
parameter.Q3BoundingSphere_Copy
does not allocate any memory for the destination bounding sphere; thedest
parameter must point to space allocated in the heap or on the stack before you callQ3BoundingSphere_Copy
.